home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / amiga.free / sorgenti vari / wolf3dmacsource.sit / Wolf3DMacSource / Music.c < prev    next >
C/C++ Source or Header  |  1994-09-15  |  358b  |  24 lines

  1. #include "Wolfdef.h"
  2.  
  3. /**********************************
  4.  
  5.     Stop the current song from playing
  6.  
  7. **********************************/
  8.  
  9. void StopSong(void)
  10. {
  11.     PlaySong(0);
  12. }
  13.  
  14. /**********************************
  15.  
  16.     Play a new song
  17.     
  18. **********************************/
  19.  
  20. void StartSong(Word songnum)
  21. {
  22.     PlaySong(songnum);            /* Stop the previous song (If any) */
  23. }
  24.